home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Art / U-V / Vision Lab Demo.cpt / Vision Lab Demo.rsrc / POST_10002 < prev    next >
Text File  |  1992-06-06  |  474b  |  36 lines

  1. gsave
  2. 100 dict begin
  3. /xorigin
  4.     Param1 def
  5. /yorigin
  6.     Param2 def
  7. /width
  8.     Param3 def
  9. /height
  10.     Param4 def
  11. /bpp
  12.     Param5 def
  13. /makexchars
  14. {
  15.     width bpp mul 7 add 8 idiv
  16. } def
  17. /xchars
  18.     makexchars def
  19. /picstr
  20. {
  21.     xchars 257 le
  22.     {xchars /xchars makexchars def}
  23.     {256 /xchars xchars 256 sub def}
  24.     ifelse string
  25. } def
  26. /dopic
  27. {
  28.     gsave
  29.     width height bpp
  30.     [width 0 0 height 0 0]
  31.     {currentfile picstr readhexstring pop} image
  32.     grestore
  33. } def
  34. xorigin yorigin translate
  35. width height scale
  36. dopic